home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxpaint.h < prev    next >
C/C++ Source or Header  |  1997-04-17  |  4KB  |  109 lines

  1. /* Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxpaint.h */
  20. /* Device coordinate painting interface for Ghostscript library */
  21. /* Requires gsropt.h, gxfixed.h, gxpath.h */
  22.  
  23. #ifndef gs_imager_state_DEFINED
  24. #  define gs_imager_state_DEFINED
  25. typedef struct gs_imager_state_s gs_imager_state;
  26. #endif
  27.  
  28. #ifndef gs_state_DEFINED
  29. #  define gs_state_DEFINED
  30. typedef struct gs_state_s gs_state;
  31. #endif
  32.  
  33. #ifndef gx_device_DEFINED
  34. #  define gx_device_DEFINED
  35. typedef struct gx_device_s gx_device;
  36. #endif
  37.  
  38. #ifndef gx_device_color_DEFINED
  39. #  define gx_device_color_DEFINED
  40. typedef struct gx_device_color_s gx_device_color;
  41. #endif
  42.  
  43. /* ------ Graphics-state-aware procedures ------ */
  44.  
  45. /*
  46.  * The following procedures use information from the graphics state.
  47.  * They are implemented in gxpaint.c.
  48.  */
  49.  
  50. int gx_fill_path(P6(gx_path *ppath, gx_device_color *pdevc, gs_state *pgs,
  51.             int rule, fixed adjust_x, fixed adjust_y));
  52. int gx_stroke_fill(P2(gx_path *ppath, gs_state *pgs));
  53. int gx_stroke_add(P3(gx_path *ppath, gx_path *to_path, gs_state *pgs));
  54.  
  55. /* ------ Imager procedures ------ */
  56.  
  57. /*
  58.  * Tweak the fill adjustment if necessary so that (nearly) empty
  59.  * rectangles are guaranteed to produce some output.
  60.  */
  61. void gx_adjust_if_empty(P2(const gs_fixed_rect *, gs_fixed_point *));
  62.  
  63. /*
  64.  * Compute the amount by which to expand a stroked bounding box to account
  65.  * for line width, caps and joins.  If the amount is too large to fit in
  66.  * a gs_fixed_point, return gs_error_limitcheck.
  67.  */
  68. int gx_stroke_path_expansion(P3(const gs_imager_state *,
  69.                 const gx_path *, gs_fixed_point *));
  70. /* Backward compatibility */
  71. #define gx_stroke_expansion(pis, ppt)\
  72.   gx_stroke_path_expansion(pis, (const gx_path *)0, ppt)
  73.  
  74. /*
  75.  * The following procedures do not need a graphics state.
  76.  * These procedures are implemented in gxfill.c and gxstroke.c.
  77.  */
  78.  
  79. /* Define the parameters passed to the imager's filling routine. */
  80. #ifndef gx_fill_params_DEFINED
  81. #  define gx_fill_params_DEFINED
  82. typedef struct gx_fill_params_s gx_fill_params;
  83. #endif
  84. struct gx_fill_params_s {
  85.     int rule;        /* -1 = winding #, 1 = even/odd */
  86.     gs_fixed_point adjust;
  87.     float flatness;
  88.     bool fill_zero_width;    /* if true, make zero-width/height */
  89.                 /* rectangles one pixel wide/high */
  90. };
  91.  
  92. #define gx_fill_path_only(ppath, dev, pis, params, pdevc, pcpath)\
  93.   (*dev_proc(dev, fill_path))(dev, pis, ppath, params, pdevc, pcpath)
  94.  
  95. /* Define the parameters passed to the imager's stroke routine. */
  96. #ifndef gx_stroke_params_DEFINED
  97. #  define gx_stroke_params_DEFINED
  98. typedef struct gx_stroke_params_s gx_stroke_params;
  99. #endif
  100. struct gx_stroke_params_s {
  101.     float flatness;
  102. };
  103.  
  104. int gx_stroke_path_only(P7(gx_path *ppath, gx_path *to_path, gx_device *dev,
  105.                const gs_imager_state *pis,
  106.                const gx_stroke_params *params,
  107.                const gx_device_color *pdevc,
  108.                const gx_clip_path *pcpath));
  109.